home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000109_fdc@columbia.edu_Mon Jun 3 09:43:01 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  52 lines

  1. Article: 13404 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Help needed
  6. Date: 3 Jun 2002 09:42:55 -0400
  7. Organization: Columbia University
  8. Lines: 35
  9. Message-ID: <adfrov$mkd$1@watsol.cc.columbia.edu>
  10. References: <26ca8a8f.0206030221.6d332e7f@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1023111776 5190 128.59.39.139 (3 Jun 2002 13:42:56 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 3 Jun 2002 13:42:56 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13404
  16.  
  17. In article <26ca8a8f.0206030221.6d332e7f@posting.google.com>,
  18. senthil <senthilb@comneti.com> wrote:
  19. :   I have one remote board whose serial port is connected(locally) to
  20. : HP unix servex's MUX. Iam using C-Kermit8 to establish connection to
  21. : the port.
  22. :   My board has a firmware which indicates the status of CTS , CD of
  23. : the serial ports through LED's. Intially i had problems with CD not
  24. : coming up, but after using SET CARRIER-WATCH OFF , the CD came up when
  25. : i connected the ckermit and the CD went down when i disconnected. I
  26. : require the same behaviour for CTS signal too. But it didnt happen.
  27. : Intially cts was not up at all. Then setting FLOW to RTS/CTS , the CTS
  28. : came up and it remains high even when the Ckermit session is closed.
  29. : This is my problem. Iam using proper nullmodem cables, with cts/rts
  30. : crossed and (dsr+cd) tied to dtr.
  31. :
  32. When Kermit exits or closes the device, the device driver should turn
  33. off CTS.  If it doesn't, I'd say that was a bug in HP-UX.
  34.  
  35. :     My doubt is how can i make both CD and CTS behave such that, when
  36. : i connect the C-Kermit the CD and CTS should come up and when i
  37. : disconnect the C-Kermit, the cd and cts should go low. Since my
  38. : testing at remote end is madatory, please give me your ideas on this
  39. : issue.
  40. Make sure no other process (such as a getty) claims the device as soon
  41. Kermit closes it.
  42.  
  43. Detailed control of individual modem signals is not a standard function
  44. of Unix.  Some specific Unix varieties might have their own unique APIs
  45. for this.  If you want to look through the HP-UX APIs for an ioctl() that
  46. explicitly turns CTS off and add it to the C-Kermit source, that would
  47. be one approach.  Another would be to file a bug report with HP -- Why
  48. doesn't CTS go off when you close the device?
  49.  
  50. - Frank
  51.